4d26c0a72dc1d73169af20a0f0e9fc7e3a09e2e3,platform/platform-impl/src/com/intellij/ui/SystemNotificationsImpl.java,SystemNotificationsImpl,notify,#String#String#String#,44
Before Change
}
myState.NOTIFICATIONS.add(notificationName);
notifications.notify(myState.NOTIFICATIONS, notificationName, title, text);
}
private static MacNotifications getMacNotifications() {
After Change
@Override
public void notify(@NotNull String notificationName, @NotNull String title, @NotNull String text) {
if (myNotifier != null && !ApplicationManager.getApplication().isActive()) {
myState.NOTIFICATIONS.add(notificationName);
myNotifier.notify(myState.NOTIFICATIONS, notificationName, title, text);
}
}